home *** CD-ROM | disk | FTP | other *** search
- #
- # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
- #
- # See the Nessus Scripts License for details
- #
-
- if(description)
- {
- script_id(10957);
- script_version ("$Revision: 1.11 $");
- name["english"] = "JServ Cross Site Scripting";
- name["francais"] = "JServ Cross Site Scripting";
- script_name(english:name["english"], francais:name["francais"]);
-
- desc["english"] = "Older versions of JServ (including the version
- shipped with Oracle9i App Server v1.0.2) are vulnerable to a
- cross site scripting attack using a request for a non-existent
- .JSP file.
-
- Solution: Upgrade to the latest version of JServ available at
- java.apache.org. Also consider switching from JServ to TomCat,
- since JServ is no longer maintained.
-
- Risk factor : Medium";
-
- script_description(english:desc["english"]);
-
- summary["english"] = "Tests for JServ Cross Site Scripting";
-
- script_summary(english:summary["english"]);
-
- script_category(ACT_ATTACK);
-
- script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
- francais:"Ce script est Copyright (C) 2002 Matt Moore");
- family["english"] = "CGI abuses : XSS";
- family["francais"] = "Abus de CGI";
- script_family(english:family["english"], francais:family["francais"]);
- script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
- script_require_ports("Services/www", 80);
- exit(0);
- }
-
- # Check starts here
- include("http_func.inc");
- include("http_keepalive.inc");
-
- port = get_http_port(default:80);
-
- if(get_kb_item(string("www/", port, "/generic_xss")))exit(0);
-
- sig = get_kb_item("www/hmap/" + port + "/description");
- if ( sig && "Apache" >!< sig ) exit(0);
-
- if(get_port_state(port))
- {
- req = http_get(item:"/a.jsp/<SCRIPT>alert(document.domain)</SCRIPT>", port:port);
- res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
- if( res == NULL ) exit(0);
- if("<SCRIPT>alert(document.domain)</SCRIPT>" >< res) security_warning(port);
- }
-